-- go to that animation layout sequence in the score:
go stFrame
set i = 1
repeat while the type of sprite 1 <> 0
-- gather information for that animation frame:
addProp (rec, i, getAnimSpriteInfo (me, animationSprite))
set i = i + 1
go the frame + 1
end repeat
return rec
end
-- return the largest number of frames in an animation:
on getLongestAnim me, spriteLst
set num = 0
set tot = count (spriteLst)
repeat with i = 1 to tot
set spr = getPropAt (spriteLst, i)
set prop = getAnimName (me, spr)
set tmpLst = getaProp (memberAnimations, prop)
if not voidP (tmpLst) then
set c = count (tmpLst)
if c > num then set num = c
end if
end repeat
return num
end
-- check to see if we have an animation in the master record:
on weHaveAnimation me, spr
set name = getAnimName (me, spr)
if voidP (getAProp (memberAnimations, name)) then return 0
else return 1
end
on getAnimName me, spr
return string(the name of member the memberNum of sprite spr of castLib the castLibNum of sprite spr & "." & the name of castLib the castLibNum of sprite spr)
end
-- make changes to sprites in spriteLst for the current frame:
on setAnimFrame me, spriteLst, startInfoLst, frameNum
set tot = count (spriteLst)
repeat with i = 1 to tot
-- get next sprite number:
set spr = getPropAt (spriteLst, i)
-- get next memberAnimation name
set name = getProp (spriteLst, spr)
-- get the current frame member record:
set workingAnim = getaProp (memberAnimations, name)